1
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.0 Transitional//EN">
5 <script type=
"text/javascript">
7 // Throw a script error.
8 function CreateScriptError() {
9 throw ("Here is an error! ");
12 // This will cause security dialog.
13 function LaunchSecurityDialog() {
14 var fso
= new ActiveXObject("Scripting.FileSystemObject");
16 var f
= fso
.OpenTextFile("Error.htm", reading
);
26 function LaunchDebugger() {
34 <input type=
"button" value=
"Script Error" onclick=
"CreateScriptError();" />
36 Click this button to test
"Suppress Html Element Errors".
41 <input type=
"button" value=
"Security dialog" onclick=
"LaunchSecurityDialog();" />
43 Click this button to test
"Suppress all dialog".
45 To launch security dialog, you may need to use the default level of IE security.
<br />
46 You can also visit a web site that need windows authentication to test
"Suppress
52 <input type=
"button" value=
"Launch Debugger" onclick=
"LaunchDebugger();" />
54 Click this button to test
"Suppress JIT debugger".